linear filter

Terms from Artificial Intelligence: humans at the heart of algorithms

Linear filters are functions/algorithms that work on numerical data includingsequential data, such as time series, and images, but which only include linear combinations of the input. Examples include compting a rolling seven-day average for daily data, or the Guassian filter for images.
      seven_dayt = (dt + dt−1 + dt−2 + dt−3 + dt−4 + dt−5 + dt−6) / 7

Defined on page 245

Used on pages 245, 253

Also known as linear filtering

Applying a digital filter